home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / includes / cicommandsandqueries.h < prev    next >
C/C++ Source or Header  |  1996-11-18  |  641b  |  24 lines

  1. /***[f*****************************************************************
  2.  *      cicmdqry.h      -- Component Interface for PageMaker Commands & Queries.
  3.  *
  4.  *      Copyright 1996 (c) Adobe Systems, Inc. All Rights Reserved
  5.  *
  6.  *      Public version
  7.  * $Revision:   1.4  $
  8.  *
  9.  *      
  10.  ***f]*****************************************************************/
  11.  
  12. #ifndef __CICMDQRY_H
  13. #define __CICMDQRY_H
  14.  
  15. // class to obtain param block
  16. class CICommandQuery : public CIInterface
  17. {
  18. public:
  19.     virtual PMXErr Retrieve(sPMParamBlockPtr *lpPB)=0;
  20.     virtual void ErrorAlert(PMXErr err, sPMParamBlockPtr lpParamBlock)=0;
  21. };
  22.  
  23. #endif
  24.